home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / libsrc~1.z / libsrc~1 / stb.c < prev    next >
Encoding:
Text File  |  1989-12-28  |  215 b   |  11 lines

  1.     /* library routine for copying structs with unpleasant alignment */
  2.  
  3. void    __stb(n, f, t)
  4.         register char *f, *t; register int n;
  5.     {
  6.         if (n > 0)
  7.             do
  8.                 *t++ = *f++;
  9.             while (--n);
  10.     }
  11.